home *** CD-ROM | disk | FTP | other *** search
- /**
- Get a resource from the BeanShell classpath.
- This method takes into account modification to the BeanShell class path via
- addClassPath() and setClassPath();
- */
-
- bsh.help.getResource = "usage: getResource( String name )";
-
- import bsh.Interpreter;
-
- URL getResource( String path )
- {
- return this.interpreter.getClassManager().getResource( path );
- }
-